back soft

ساخت وبلاگ

Vote count: 0

I have a div on my page that calls a function when the mouse hovers over it. The problem is that I still need have hover() activated when someone right clicks on the div and opens the context menu.

So, is there a solution to this?

asked 31 secs ago

back soft...
ما را در سایت back soft دنبال می کنید

برچسب : نویسنده : استخدام کار backsoft بازدید : 356 تاريخ : يکشنبه 31 مرداد 1395 ساعت: 23:37

Vote count: 0 This has been asked before, but. I'm trying to implement JWT token auth with PHP 7 on apache 2.4. The script (symfony) never sees the Authorization header. I've read Apache strips down "Authorization" header and already added: RewriteEngine On RewriteCond %{HTTP:Authorization} ^(.*) RewriteRule .* - [e=HTTP_AUTHORIZATION:%1] to no avail. mod_rewrite is enabled and php loaded as module. My simple test case is curl --header "Authorization: Bearer eyJ0....." http://localhost/test.php I'm totally lost as to what else could potentially be needed to get the Authorization header into php? asked 31 secs agoandig back soft...
ما را در سایت back soft دنبال می کنید

برچسب : نویسنده : استخدام کار backsoft بازدید : 416 تاريخ : يکشنبه 31 مرداد 1395 ساعت: 23:37

Vote count: 0 I am trying to subclass a UILabel so that it has a default keing set to 1.5 then i am going to use that in my app with multiple labels. goal is to have default ke set out of the box so i can avoid repeated code all over the place also labels are set as mix of attributed and regular text Exapmple: @IBoutlet weak var myLabel: CustomeLabelWithKe! myLabel.attributedText = myAttributedText @IBOutlet weak var myOtherLabelInADifferentViewController: CustomeLabelWithKe! myOtherLabelInADifferentViewController.text "Foo Bar" both of these label should have ke of 1.5 asked 14 secs agoSwift_Leaer back soft...
ما را در سایت back soft دنبال می کنید

برچسب : how to subclass in python,how to subclass uiview,how to subclass in swift,how to subclass nsoperation,how to subclass uibutton,how to subclass uicollectionviewflowlayout,how to subclass uiview swift,how to subclass uiviewcontroller,how to subclass uitabbarcontroller,how to subclass in c, نویسنده : استخدام کار backsoft بازدید : 375 تاريخ : يکشنبه 31 مرداد 1395 ساعت: 23:37

Vote count: 0 I recently have worked on aws-cpp-sdk from AWS service. But unfortunately I couldn't understand how to handle memory because there aren't enough tutorials or examples on the inteet. What I have tried are as follows.1. built aws-cpp-sdk as a 64bit shared dll for windows x64(exactly win10, vs 2015) using CMake.2. And used that library in win32 console application to test.3. But it's complicated while using their SDK.First attached my code #include "stdafx.h" #include <awss3S3Client.h> #include <awscoreAws.h> #include <awss3modelPutObjectRequest.h> using namespace Aws; using namespace Aws::S3; using namespace Aws::S3::Model; static const char* ALLOCATION_TAG = "memory"; static const char* S3_BUCKET_NAME = "XXXXXXXX"; static const char* S3_KEY = "Hello"; int main() { Aws::SDKOptions options; Aws::InitAPI(options); Client::Client back soft...
ما را در سایت back soft دنبال می کنید

برچسب : how to handle stress,how to handle anxiety,how to handle rejection,how to handle disrespectful grown children,how to handle dry ice,how to handle anger,how to handle depression,how to handle a break up,how to handle conflict,how to handle a bully, نویسنده : استخدام کار backsoft بازدید : 363 تاريخ : يکشنبه 31 مرداد 1395 ساعت: 18:37

Vote count: 0 I have an old Debian (Lenny), on which I develop an application that should connect to RabbitMQ. I downloaded the official C++ client rabbitmq-c-0.8.0 from https://github.com/alanxz/rabbitmq-c/releases/tag/v0.8.0 , but unfortunately, I can't compile it on my old Debian: wget https://github.com/alanxz/rabbitmq-c/archive/v0.8.0.tar.gz tar zxvf v0.8.0.tar.gz autoreconf -i Result: autoreconf -i /usr/share/aclocal/libmcrypt.m4:17: waing: underquoted definition of AM_PATH_LIBMCRYPT /usr/share/aclocal/libmcrypt.m4:17: run info '(automake)Extending aclocal' /usr/share/aclocal/libmcrypt.m4:17: or see http://sources.redhat.com/automake/automake.html#Extending-aclocal Makefile.am:6: Libtool library used but `LIBTOOL' is undefined Makefile.am:6: The usual way to define `LIBTOOL' is to add `AC_PROG_LIBTOOL' Makefile.am:6: to `configure.ac' and run `aclocal' and `auto back soft...
ما را در سایت back soft دنبال می کنید

برچسب : rabbitmq c client,rabbitmq c client tutorial,rabbitmq c client windows,rabbitmq c client heartbeat,rabbitmq c client ssl,rabbitmq c client linux,amqp c client,rabbitmq objective,c client,rabbitmq client lib,objective,c,rabbitmq,client,not,publishing,messages,to,queue, نویسنده : استخدام کار backsoft بازدید : 396 تاريخ : يکشنبه 31 مرداد 1395 ساعت: 18:37

Vote count: 0 I am running a command. After running it, the terminal asks me for a password to proceed this command (no admin password). Now I have to type the password manually into the terminal. Is it possible to create a command which contains the password so that the command runs automatically? asked 2 mins agoMegaetron back soft...
ما را در سایت back soft دنبال می کنید

برچسب : two terminal commands one line,terminal two commands,run two terminal commands,linux terminal two commands one line,ubuntu terminal two commands one line,mac terminal two commands, نویسنده : استخدام کار backsoft بازدید : 367 تاريخ : يکشنبه 31 مرداد 1395 ساعت: 18:37

Vote count: 0 Am I missing something or asp.net core allows to post script tag in user text fields? In Previous versions of asp.net mvc I needed to allow it by [AllowHtml] attribute. Is there a way how enable validation agains potentially dangerous values? I'm free to submit value like <script src='http://test.com/hack.js'></script> during form post. Model: using System.ComponentModel.DataAnnotations; namespace Test.Models { public class TestModel { [MaxLength(500)] public string Content { get; set; } } } Controller: using Microsoft.AspNetCore.Mvc; using Test.Models; namespace Test.Controllers { public class HomeController : Controller { public IActionResult Index() { var model = new TestModel { Content = "Test" }; retu View(); } [HttpPost] public IActionResul back soft...
ما را در سایت back soft دنبال می کنید

برچسب : نویسنده : استخدام کار backsoft بازدید : 350 تاريخ : يکشنبه 31 مرداد 1395 ساعت: 13:35

Vote count: 0 I've created a custom dropdown element. The number of options it can have is based on a Database Table (I haven't created the Table yet). Like the number of options can be 4 or even 5 or anything for that matter. I'll use PHP to give the number of options for the dropdown. Each of the options are in an li tag. The li siblings are inside the ul tag. I have a CSS file which animates the li items. But instead of animating them all at once (in which case I would just animate the ul and would get the same effect), what I want to do is to animate them one by one. Each li will have a delay which is progressive. For example if the first li has a 0s delay and a duration of 300ms then the second will start when the first ends, that is the second li will have a delay of 300ms with the same duration. The duration remains the same, just the delay changes so as to give it a follow- back soft...
ما را در سایت back soft دنبال می کنید

برچسب : dynamic css with jquery,dynamically load css with jquery,dynamic css using jquery,dynamic css class jquery,dynamic css style jquery,dynamic css apply jquery, نویسنده : استخدام کار backsoft بازدید : 327 تاريخ : يکشنبه 31 مرداد 1395 ساعت: 13:35

Vote count: 0 My model is like class mymodel(models.Model): param1=models.NullBooleanField(blank=False) My form is class MyForm01(forms.Form): LCHOICES=[(True, 'Yes'),(False,'No')] answer=forms.ChoiceField( label='Question', choices=LCHOICES, widget=forms.RadioSelect(), help_text='Help text') I am trying to pass the user choice to a model for saving as below, where id_number is a new number for new object creation. myobj=mymodel.objects.create( id=mymodel.objects.get(id=id_number), param1=form.cleaned_data.['answer'] ) Everything happens, including new object creation but the data passed is always True even when the original answer is negative. If I take a print of answer its coming as False. Also if I change form.cleaned_data.['answer'] to False, it is well accepted. Where am I making a mistake? asked back soft...
ما را در سایت back soft دنبال می کنید

برچسب : not able to sleep,not able to,not able to read,not able to hear,not able to connect to internet,not able to breathe,not able to swallow,not able to download apps,not able to pee, نویسنده : استخدام کار backsoft بازدید : 352 تاريخ : يکشنبه 31 مرداد 1395 ساعت: 13:35

Vote count: 0 I am trying to create a Canvas, draw stuff on it, and then show it on a View. My code below runs with no errors, but the Canvas doesn't show. All I see is a blank, black screen. I know there are other ways to do this example, but what I am actually trying to do is draw a bunch of stuff on the Canvas, show it, draw more stuff on the Canvas, show it, etc.... I am very new to Android. I have tried to look, but haven't been able to find any simple solution [simple for me :)] MainActivity.java public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); //Get screen size. THIS WORKS; when I log the output it's correct. Display display = getWindowManager().getDefaultDisplay(); Point size = new Point back soft...
ما را در سایت back soft دنبال می کنید

برچسب : android canvas on a view, نویسنده : استخدام کار backsoft بازدید : 381 تاريخ : يکشنبه 31 مرداد 1395 ساعت: 8:31

Vote count: 0 Got the certificate and provisioning and the app to download. But it doesn't work because it mentions device token invalid when I checked the logs. How do I get the correct device token ? I just want to test out push notification on AWS Mobile. I read somewhere it changes everytime you run the app? Running iOS 9, xCode 7.3.1 asked 1 min agoMarin back soft...
ما را در سایت back soft دنبال می کنید

برچسب : aws mobile hub,aws mobile hub tutorial,aws mobile hub pricing,aws mobile hub review,aws mobile hub vs firebase,aws mobile hub swift,aws mobile hub ios,aws mobile hub push notifications,aws mobile hub vs parse,aws mobile hub dynamodb, نویسنده : استخدام کار backsoft بازدید : 446 تاريخ : يکشنبه 31 مرداد 1395 ساعت: 8:31

Vote count: 0 qith a query I nedd to join 2 table and from result to remve dupe records but I need to show last insert (is.pr). I try this, but not work : $query="SELECT is.cf, is.ps, is.pr, is.pn, dati.ma, dati_uni.age, dati_uni.code FROM (SELECT * FROM is ORDER BY is.pr DESC) as temp INNER JOIN dati_uni ON (dati_uni.code=is.ps) GROUP BY is.cf"; thx in advance. asked 14 secs agoGaetano Sale back soft...
ما را در سایت back soft دنبال می کنید

برچسب : mysql remove dupes,mysql delete dupes,mysql remove duplicate rows,mysql remove duplicate rows from table,mysql remove duplicate records,mysql remove duplicate rows query,mysql remove duplicate rows without primary key,mysql remove duplicate values,mysql remove duplicate rows based on one column,mysql remove duplicate columns, نویسنده : استخدام کار backsoft بازدید : 359 تاريخ : يکشنبه 31 مرداد 1395 ساعت: 8:31

Vote count: 0 [[When I run my app on xcode, my image views and buttons wont appear in the simulations. They show up in the storyboard, but, they do not show up in the simulation. My buttons and image views have images, and they are png files. I haven't put any serious code in the app yet because I wanted to make sure the Image views and buttons were appearing (sadly they did not appear :( ). The only code I put in were IBOutlets for the Image Views and IBActions for the buttons (Non of which have any code inside yet). enter code hereI am currently running xcode 7.3.1 and new to the swift language. thanks, Jack Colosky1 // Here is the code from the view controller import UIKit class ViewController: UIViewController { @IBOutlet weak var SlotRectangle1: UIImageView! @IBOutlet weak var SlotRectangle2: UIImageView! @IBOutlet weak var SlotRectangle3: UIImageView! override func view back soft...
ما را در سایت back soft دنبال می کنید

برچسب : when i run i feel his pleasure,when i run,when i run my back hurts,when i run my teeth hurt,when i run my shins hurt,when i run don't chase me,when i run my stomach cramps,when i run my legs itch,when i run my feet hurt,when i run i meet paramedics, نویسنده : استخدام کار backsoft بازدید : 441 تاريخ : يکشنبه 31 مرداد 1395 ساعت: 3:30

Vote count: 0 val manager=sc.textFile ("hdfs://localhost:54310/user/training/employee_dir/employeeManager") manager.first ERROR: java.io.EOFException: End of File Exception between local host is: "localhost.localdomain/127.0.0.1"; destination host is: "localhost":54310; :java.io.EOFException; For more details see:http://wiki.apache.org/hadoop/EOFException asked 32 secs agoSridhar back soft...
ما را در سایت back soft دنبال می کنید

برچسب : error while creating pse,error while creating database accessor,error while creating directories invalid argument,error while creating ks from kcmo,error while creating table 'edisegment' entry,error while creating the asio driver,error while creating message adobe reader,error while creating report jacoco,error while creating maven project in eclipse,error while creating module org apache subversion javahl clientexception, نویسنده : استخدام کار backsoft بازدید : 420 تاريخ : يکشنبه 31 مرداد 1395 ساعت: 3:30

Vote count: 0 I'm reading about lambda calculus. From the end of section 2.1 here http://www.toves.org/books/lambda/: (λx.(λx.λy.x × y) 3 ((λz.x + z) 2)) 1 ⇒ (λx.λy.x × y) 3 ((λz.x + z) 2) where x = 1 ⇒ (λy.x × y) ((λz.x + z) 2) where x = 3 ⇒ x × y where x = 3 and y = (λz.x + z) 2 ⇒ x × y where x = 3 and y = x + z and z = 2 ⇒ x × y where x = 3 and y = 5 and z = 2 ⇒ 15 It says In fact, though, y should attain the value 3 rather than 5 since the first beta-reduction should plug 1 into x's spot in the expression. For this reason, a lazy parameter must preserve the current variable context with each reduction, remembering in this case that x = 3 within the expression λy.x × y but maintaining the fact that x = 1 outside the expression. But I'm confused over the order of operations during the beta reduction. There explanation is, back soft...
ما را در سایت back soft دنبال می کنید

برچسب : lambda calculus , reductions ,1,lambda calculus , reductions,lambda calculus,lambda calculus tutorial,lambda calculus for dummies,lambda calculus examples,lambda calculus and functional programming,lambda calculus pdf,lambda calculus calculator,lambda calculus interpreter, نویسنده : استخدام کار backsoft بازدید : 350 تاريخ : يکشنبه 31 مرداد 1395 ساعت: 3:30

Vote count: 0 So I have made a 'Student' class which has some data members,and methods....What I want to do is get input from the user using a form and then initialize a student object using the values entered by the user. I used the following code but somehow every Student object has the same values as the last entered user input. Srry for bad English //Declared in main class Student1 stu = new Student1(); Student1[] Student1Array = new Student1[200]; int Mcounter =0; //elsewhere in the program private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) { int Admno = Integer.parseInt(admTF.getText()); String Name = name.getText(); int Standard = Integer.parseInt((String)(ClassCB.getSelectedItem()); String S = (String)SectionCB.getSelectedItem(); char Section = S.charAt(0); String G = back soft...
ما را در سایت back soft دنبال می کنید

برچسب : populate array with user input java, نویسنده : استخدام کار backsoft بازدید : 364 تاريخ : شنبه 30 مرداد 1395 ساعت: 22:24

Vote count: 0 My application is hosted on azure, and it is having issues when uploading large files,I'm saving the files to sql sever, It works great if it is small files, but if the size is around 40MB it fails with transaction timeout. I have increased the timeout of the connection to 180. asked 38 secs agoBharath Ramachandra back soft...
ما را در سایت back soft دنبال می کنید

برچسب : azure connection timeout,azure connection timeout expired,azure connection timed out,sql azure connection timeout,azure tcp connection timeout,windows azure connection timeout,azure idle connection timeout,azure ftp connection timeout,azure database connection timeout,azure connection string timeout, نویسنده : استخدام کار backsoft بازدید : 327 تاريخ : شنبه 30 مرداد 1395 ساعت: 22:24

Vote count: 0 I am developing an angularJS application where my geocordinates from the device are taken and sent to my REST service every few seconds. Code for geo coordinates sending is located in just one controller. It means that geolocation is only updated in my server if the template page for that controller is open. How do I make it so that geolocation is always updated regardless of which page I am on. Here is my code for that controller: .controller('geolocationCtrl', [ '$scope', '$http', 'geolocationFactory', function($scope, $http, geolocationFactory) { // constants should be uppercase var GET_PATH = 'https://temp-domain.co.uk/rest/rest.php/client/geolocation', PUT_PATH = 'https://temp-domain.co.uk/rest/rest.php/client/geolocation/update'; $http.get(GET_PATH).then(function (response) { var respLong = Number(response.data. back soft...
ما را در سایت back soft دنبال می کنید

برچسب : how to make slime,how to make money,how to make french toast,how to make a resume,how to make buttermilk,how to make money online,how to make pancakes,how to make jello shots,how to make ice cream,how to make fried rice, نویسنده : استخدام کار backsoft بازدید : 383 تاريخ : شنبه 30 مرداد 1395 ساعت: 22:24

Vote count: 0 I have a list of the countries stored into XML, as follows: <?xml version="1.0" encoding="utf-8"?> <resources> <string-array name="nation_array"> <item>Afghanistan</item> <item>Albania</item> <item>Algeria</item> <item>American Samoa</item> <item>Andorra</item> <item>Angola</item> <item>Anguilla</item> <item>Antarctica</item> ................ </string-array> </resources> Adapter: String[] countries = groupContent.getResources().getStringArray(R.array.nation_array); ArrayAdapter<String> nationAdapter = new ArrayAdapter<>(mContext, R.layout.simple_list_item_1, countries); autoCompleteTextView.setAdapter(nationAdapter); And everything works fine. But now it tued out that need to drop-down li back soft...
ما را در سایت back soft دنبال می کنید

برچسب : complex array in php,complex array in c,complex array in javascript,complex array in java,complex array in fortran,complex array in python,complex array in matlab,complex array in excel,complex array in idl,complex array in numpy, نویسنده : استخدام کار backsoft بازدید : 291 تاريخ : شنبه 30 مرداد 1395 ساعت: 17:20

Vote count: 0 i have this collection { "_id" : ObjectId("57b8277cd48b97d6e38d9eb2"), "student_id" : "326598", "sem" : "sem1", "marks" : [ { "title" : "english", "from" : 2, "to" : 15 }, { "title" : "maths", "from" : 5, "to" : 18 }, { "title" : "science", "from" : 10, "to" : 20 } ] } { "_id" : ObjectId("52873b7e4038253faa4bbc10"), "student_id" : "124578", "sem" : "sem1", "marks" : [ { "title" : "english", "from" : 1, "to" : 20 }, { "title" : "maths", "from" : 6, "to" : 16 }, { "title" : "science", "from" : 12, "to" : 20 } ] } and write this query : var x= 7; db.getCollection('numbers').aggregate([ {$unwind : "$marks"}, {$match : {$and :[{"marks.from": { $gte :2 } },{"marks.to": { $ back soft...
ما را در سایت back soft دنبال می کنید

برچسب : between query in mongodb, نویسنده : استخدام کار backsoft بازدید : 347 تاريخ : شنبه 30 مرداد 1395 ساعت: 17:20